body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23415d;
  background: #fff;
  margin: 0;
  padding: 0;
}

/* HERO BG SECTION - background image with diagonal cut */
.hero-bg-section {
  position: relative;
  min-height: 580px;
  background: linear-gradient(90deg, #fff 54%, transparent 54%),
    url('https://imaash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') no-repeat top right/cover;
  overflow: hidden;
}
.hero-bg-section::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 54%;
  background: url('images/360_F_1168155222_enFR0jBTt25WXDjiNUQ2jSrraqYLLALG\ \(1\).png') no-repeat top right/cover;
  clip-path: polygon(39% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}
.header {
  display: flex;
  align-items: center;
  padding: 24px 5vw 0 5vw;
  background: transparent;
  position: relative;
  z-index: 3;
  flex-wrap: wrap;
}
.logo img {
  height: 70px;
}
.header nav ul {
  margin-left: auto; /* or 0 */
  justify-content: center; /* to center nav items */
  flex-wrap: wrap;
}

.header nav ul li {
  cursor: pointer;
  padding: 6px 0;
  
  border-bottom: 2px solid transparent;
  color: #23415d;
  transition: border 0.2s;
  background: none;
}
.header nav ul li.active,
.header nav ul li:hover {
  border-bottom: 2px solid #23415d;
}

nav ul li a {
  text-decoration: none;
  color: inherit; /* same as surrounding text */
  font-weight: bold;
}

nav ul li a:hover {
  color: #1e4872; /* highlight color on hover */
}

.search-bar {
  background-color: #23415d !important;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 170px;  /* smaller width */
}

.search-bar input {
  border: none;
  padding: 8px 10px;
  outline: none;
  background-color: transparent !important;
  color: rgb(234, 231, 231);
  flex-grow: 1;
  min-width: 0;
  font-size: 14px;
}

.search-bar button {
  background: #1b2d4a;
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 14px;
}




.hero-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 60px 5vw 0 5vw;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.hero-left {
  flex: 1.1;
  min-width: 320px;
}
.hero-left h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 1px;
  color: #23415d;
}
.goals {
  font-size: 1.07rem;
  margin-bottom: 26px;
}
.goals ol {
  margin: 8px 0 0 18px;
  padding: 0;
  font-weight: 600;
  color: #23415d;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: #23415d;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.2s;
  gap: 10px;
}
.cta-btn span { margin-left: 8px; }
.cta-btn:hover { background: #3a7ca5; }


@media (max-width: 600px) {
  .cta-btn {
    width: 100%;           /* full width on small screens */
    justify-content: center; /* center content inside the button */
    font-size: 0.95rem;    /* slightly smaller font */
    padding: 10px 0;       /* reduce horizontal padding */
  }
  .cta-btn span {
    margin-left: 4px;      /* reduce left margin for icon/text spacing */
  }
}



 
/* Footer */
.footer {
  background: #23415d;
  color: #fff;
  margin-top: 140px;
  padding: 48px 7vw 30px 7vw;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.footer-brand img {
  width: 110px;
  margin-bottom: 18px;
}
.footer-contacts {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contacts i {
  margin-right: 8px;
}

.footer-contacts a {
  text-decoration: none;
  color: inherit;
}

.footer-contacts a:hover {
  color: #fdfefe; /* optional hover effect */
}

.footer-social {
  display: flex;
  gap: 21px;
  margin-top: 10px;
}
.footer-social a {
  color: #fff;
  font-size: 1.25rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #ffb400;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 34px;
  min-width: 340px;
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  text-decoration: none;
  color: inherit; /* keeps same color as before */
  margin: 0 10px; /* space between links */
}

.footer-nav a:hover {
  color: #dce0e3; /* or any highlight color */
}

.subscribe-box1 {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.subscribe-box1 input {
  padding: 7px 12px;
  border-radius: 0px;
  border: none;
  outline: none;
}
.subscribe-box1 button {
  background: #fff;
  color: #23415d;
  border: none;
  padding: 7px 18px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.subscribe-box1 button:hover {
  background: #ffb400;
  color: #fff;
}

/* Responsive for tablets (max-width: 1200px) */
@media (max-width: 1200px) {
  .header nav ul {
    margin-left: 100px;
    gap: 28px;
  }
  .footer-top {
    gap: 32px;
    flex-direction: column;
  }
}

/* Responsive for tablets and phones (max-width: 900px) */
@media (max-width: 900px) {
  .hero-bg-section {
    background: #fff;
    min-height: unset;
  }
  .hero-bg-section::after {
    display: none;
  }
  .hero-row {
    flex-direction: column;
    gap: 24px;
    padding: 30px 5vw 0 5vw;
    align-items: stretch;
  }
  .header nav ul {
    margin-left: 0;
    gap: 18px;
    flex-wrap: wrap;
  }

  .footer-links {
    min-width: 0;
    width: 100%;
  }
  .footer {
    padding: 32px 2vw 18px 2vw;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-brand img {
    margin-bottom: 8px;
  }
  .footer-social {
    margin-top: 0;
  }
  
}

/* Responsive for small phones (max-width: 600px) */
@media (max-width: 600px) {
  .header {
    padding: 12px 2vw 0 2vw;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-row{
    padding: 18px 1vw 0 1vw;
    gap: 12px;
  }
  
  .cta-btn {
    width: 100%;
    justify-content: center;
    font-size: 0.98rem;
    padding: 8px 0;
  }
  .footer-links {
    gap: 14px;
  }
  .footer {
    padding: 16px 1vw 8px 1vw;
  }
}
/* Arrange input and button inline */
.underline-style {
  display: flex;
  align-items: center;
  gap: 10px; /* space between input and button */
}

.underline-style input {
  flex: 1; /* take remaining space */
  border: none;
  border-bottom: 2px solid #fff;
  background: transparent;
  padding: 5px 0;
  color: #fff;
  outline: none;
}

.underline-style input::placeholder {
  color: rgba(255,255,255,0.7);
}

.underline-style button {
  background: #fff;
  color: #23415d;
  border: none;
  padding: 7px 18px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.underline-style button:hover {
  background: #ffb400;
  color: #fff;
}
.underline-line {
  width:auto;          /* length of the line */
  height: 2px;           /* thickness */
  background-color: #d3d9de; /* color of the underline */
  margin: 10px 0;        /* vertical spacing */
}

.nav-search-wrapper {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 16px 20px;
  gap: 40px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  flex-grow: 0;
  border-radius: 0px;       /* optional rounded corners */
  box-sizing: border-box;    /* include padding in width */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* subtle shadow */
}

@media (max-width: 900px) {
  .nav-search-wrapper {
    max-width: 100%;
    padding: 12px 15px;
    gap: 20px;
    flex-wrap: wrap;          /* allow wrapping */
  }
}

@media (max-width: 600px) {
  .nav-search-wrapper {
    flex-direction: column;   /* stack items vertically */
    align-items: stretch;
    padding: 10px 12px;
    gap: 16px;
  }
}



    .nav-search-wrapper nav {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;  /* push menu items to the right */
  align-items: center;
  
}

.nav-search-wrapper nav ul {
  display: flex;
  gap: 110px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 500;
  color: #23415d;
}

    .nav-search-wrapper nav ul li {
      cursor: pointer;
      padding: 6px 0;
      border-bottom: 2px solid transparent;
      transition: border 0.2s;
      background: none;
    }

    .nav-search-wrapper nav ul li.active,
    .nav-search-wrapper nav ul li:hover {
      border-bottom: 2px solid #23415d;
    }

    .nav-search-wrapper .search-bar {
      background: #f2f2f2;
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .nav-search-wrapper .search-bar input {
      border: none;
      padding: 8px 12px;
      outline: none;
      background: transparent;
    }

    .nav-search-wrapper .search-bar button {
      background: #23415d;
      color: #fff;
      border: none;
      padding: 8px 16px;
      cursor: pointer;
    }



    /* Large screens: keep as is */

/* Tablets and medium screens (900px and below) */
@media (max-width: 900px) {
  .nav-search-wrapper {
    flex-wrap: wrap;
    gap: 20px;
    padding: 12px 16px;
    max-width: 100%;
  }

  .nav-search-wrapper nav {
    flex-grow: 1;
    justify-content: center;  /* center nav menu */
    margin: 0 auto;
    width: 100%;
  }

  .nav-search-wrapper nav ul {
    gap: 40px; /* reduce gap between nav items */
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-search-wrapper nav ul li {
    padding: 8px 12px;
    font-size: 14px;
  }

  .nav-search-wrapper .search-bar {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .nav-search-wrapper .search-bar input {
    font-size: 14px;
    padding: 8px 10px;
  }

  .nav-search-wrapper .search-bar button {
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* Small phones (600px and below) */
@media (max-width: 600px) {
  .nav-search-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 10px 12px;
  }

  .nav-search-wrapper nav {
    justify-content: center;
    margin: 0;
    width: 100%;
  }

  .nav-search-wrapper nav ul {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-search-wrapper nav ul li {
    font-size: 13px;
    padding: 8px 6px;
  }

  .nav-search-wrapper .search-bar {
    width: 100%;
    max-width: 100%;
  }

  .nav-search-wrapper .search-bar input {
    font-size: 13px;
    padding: 6px 8px;
  }

  .nav-search-wrapper .search-bar button {
    padding: 6px 10px;
    font-size: 13px;
  }
}

  body { font-family: 'Montserrat', Arial, sans-serif; color: #23415d; margin: 0; padding: 0; background: #fff; }
    .safety-policy-box {
      background: #23415d;
      color: #fff;
      padding: 28px 28px;
      max-width: 1100px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      margin-top: -80px;
      border-radius: 8px;
      box-shadow: 0 8px 30px rgba(35,65,93,0.25);
      display: flex;
      align-items: center;
      gap: 28px;
      z-index: 5;
    }
    .safety-left { flex: 1 1 60%; min-width: 240px; }
    .safety-left h3 { margin: -10px 0 10px 0; font-size: 1.5rem; font-weight: 800; letter-spacing: 0.4px; }
    .safety-left p { margin: 0; line-height: 1.6; font-size: 1rem; color: #eaf2f7; }
    .safety-right { flex: 0 0 360px; }
    .safety-right img { width: 100%; height: 220px; object-fit: cover; border-radius: 0px; display: block; }
    @media (max-width: 900px) {
      .safety-policy-box { position: static; transform: none; margin: 20px auto 0 auto; flex-direction: column; padding: 20px; max-width: 92%; text-align: center; }
      .safety-left { order: 1; }
      .safety-right { order: 2; width: 100%; }
      .safety-right img { height: auto; max-height: 320px; }
    }

